home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / TIFF / TiffToPS / makefile next >
Makefile  |  1992-02-21  |  667b  |  71 lines

  1. #
  2.  
  3. #  makefile for ..\tiffps -- Make file MS/DOS, Microsoft C 6.0
  4.  
  5. #
  6.  
  7. #            E. McCreight
  8.  
  9. #            Adobe Systems Incorporated
  10.  
  11. #            1 Jan 90
  12.  
  13. #            last modified 29 Jan 92
  14.  
  15.  
  16.  
  17. SLASH=\ # space follows, to prevent confusion with line continuation
  18.  
  19. MODEL=S
  20.  
  21. CD=-DMSC
  22.  
  23.  
  24.  
  25. CLCMD=cl -Zi -A$(MODEL)
  26.  
  27. OPT=-Od
  28.  
  29.  
  30.  
  31. .c.obj :
  32.  
  33.     $(CLCMD) -W1 -c $(OPT) $(CD) $*.c
  34.  
  35.     
  36.  
  37. all : tiffps.exe
  38.  
  39.  
  40.  
  41. clean :
  42.  
  43.     del tiffps.obj
  44.  
  45.     del revbits.obj
  46.  
  47.     del normbits.obj
  48.  
  49.     del tiffps.exe
  50.  
  51.  
  52.  
  53. normbits.obj : normbits.c
  54.  
  55.  
  56.  
  57. revbits.obj : revbits.c
  58.  
  59.  
  60.  
  61. tiffps.obj : tiffps.c
  62.  
  63.  
  64.  
  65. tiffps.exe : tiffps.obj revbits.obj normbits.obj
  66.  
  67.     $(CLCMD) -F 2000 tiffps.obj revbits.obj normbits.obj
  68.  
  69.  
  70.  
  71.